/* ------------------------------
   GLOBAL PAGE WRAPPER
------------------------------ */

.site-body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  padding-top: 0; /* header already has spacing */
  padding-bottom: 4rem; /* consistent bottom spacing */
}

.site-body > *:first-child {
  margin-top: 0;
}

.site-body > *:last-child {
  margin-bottom: 0;
}


/* ------------------------------
   HEADER LAYOUT
------------------------------ */

.header__new {
  background: gray;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header__new--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

/* ------------------------------
   LOGO
------------------------------ */

.header__new--logo img {
  height: auto;
  max-height: 58px;
}

/* ------------------------------
   DESKTOP NAV
------------------------------ */

.header__new--nav nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__new--nav nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color .2s ease;
}

.header__new--nav nav a:hover {
  color: #6aa84f;
}

/* ------------------------------
   DROPDOWN
------------------------------ */

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #ddd;
  min-width: 200px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dropdown-content a {
  display: block;
  padding: 0.6rem 1rem;
  color: #333;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #f5f5f5;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ------------------------------
   BUTTON
------------------------------ */

.btn {
  background: #6aa84f;
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background .2s ease;
}

.btn:hover {
  background: #5e9646;
}

/* ------------------------------
   MOBILE MENU
------------------------------ */

.header__new--mobile {
  display: none;
}

.menu-button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 28px;
  height: 3px;
  background: #333;
  display: block;
  transition: all .3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: relative;
}

#menu-toggle {
  display: none;
}

.menu {
  display: none;
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 1.5rem;
}

#menu-toggle:checked ~ .menu {
  display: block;
}

.menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu nav li {
  margin-bottom: 1rem;
}

.menu nav a {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .header__new--nav {
    display: none;
  }

  .header__new--mobile {
    display: block;
  }

  .header__new--inner {
    height: 70px;
  }
}


/* ------------------------------
   HOME BANNER / HERO SECTION
------------------------------ */



.banner--home {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

/* Video background */
.home__banner__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.55);
}

/* Content wrapper */
.banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

/* Headline */
.banner-text__wrap {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.banner-text__fancy {
  display: inline-block;
  font-family: serif;
  font-style: italic;
  color: #ffffff;
}

/* CTA button */
.banner__content .btn {
  background: #6aa84f;
  color: #fff;
  padding: 0.9rem 1.8rem;
  font-size: 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease;
}

.banner__content .btn:hover {
  background: #5e9646;
}

/* ------------------------------
   SIMPLE FADE-IN ANIMATIONS
------------------------------ */

.fade-in {
  opacity: 0;
  animation: fadeIn ease forwards;
}

.animation-delay-500 {
  animation-delay: .5s;
}

.animation-delay-1000 {
  animation-delay: 1s;
}

.animation-duration-3000 {
  animation-duration: 3s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {
  .banner--home {
    height: 75vh;
    min-height: 500px;
  }

  .banner-text__wrap {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
}

/* -----------------------------------
   HOMEPAGE VALUE STACK
----------------------------------- */

.homepage-value-stack {
  padding: 6rem 0;
  background: #fff;
}

.homepage-value-stack .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Each item */
.homepage-value-stack__item {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Alternate layout */
.homepage-value-stack__item--2,
.homepage-value-stack__item--3:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image block */
.homepage-value-stack__images img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: block;
}

/* Copy block */
.homepage-value-stack__copy {
  flex: 1;
  max-width: 600px;
}

.homepage-value-stack__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.homepage-value-stack__paragraph p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 1.5rem;
}

/* CTA button */
.homepage-value-stack__copy .btn {
  background: #6aa84f;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease;
}

.homepage-value-stack__copy .btn:hover {
  background: #5e9646;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */

@media (max-width: 900px) {
  .homepage-value-stack__item {
    flex-direction: column;
    text-align: center;
  }

  .homepage-value-stack__item--2 {
    flex-direction: column;
  }

  .homepage-value-stack__images img {
    height: 260px;
  }

  .homepage-value-stack__copy {
    margin: 0 auto;
  }
}



/* -----------------------------------
   VALUE STACK (Alternating Image + Text)
----------------------------------- */

.value-stack {
  padding: 6rem 0;
  background: #0f2a1f; /* deep green */
  color: #fff;
}

.value-stack .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Each item */
.value-stack__item {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Alternate layout for even items */
.value-stack__item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image block */
.value-stack__image img {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Copy block */
.value-stack__content {
  flex: 1;
  max-width: 600px;
}

.value-stack__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.value-stack__subtitle {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  color: #cfe8d1; /* soft green for contrast */
  margin-bottom: 1.25rem;
}

.value-stack__text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #e8f2ea; /* readable soft white */
  margin-bottom: 1.5rem;
}

/* CTA button */
.value-stack__cta .btn {
  background: #fff;
  color: #0f2a1f;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease, color .2s ease;
}

.value-stack__cta .btn:hover {
  background: #cfe8d1;
  color: #0a1d15;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */

@media (max-width: 900px) {
  .value-stack__item {
    flex-direction: column;
    text-align: center;
  }

  .value-stack__item:nth-child(even) {
    flex-direction: column;
  }

  .value-stack__image img {
    height: 300px;
  }

  .value-stack__content {
    margin: 0 auto;
  }
}

/* ------------------------------
   FEATURED PROJECTS SECTION
------------------------------ */

.homepage-featured-projects {
  padding: 6rem 0;
  background: #fafafa;
}

.homepage-featured-projects .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section header */
.homepage-featured-projects__header {
  text-align: center;
  margin-bottom: 4rem;
}

.homepage-featured-projects__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.homepage-featured-projects__header h3.fancy {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  color: #6aa84f;
  margin-bottom: 1rem;
}

.homepage-featured-projects__header--body {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* ------------------------------
   FEATURE GRID
------------------------------ */

.homepage-featured-projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 5rem;
  align-items: stretch;
}

/* Image blocks */
.homepage-featured-projects__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Text block */
.homepage-featured-projects__grid .div4 {
  background: #ffffff;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homepage-featured-projects__grid .div4 h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #222;
}

.homepage-featured-projects__grid .div4 h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6aa84f;
  margin-bottom: 1rem;
}

.homepage-featured-projects__grid .div4 div {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* CTA button */
.homepage-featured-projects__grid .btn {
  background: #6aa84f;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease;
}

.homepage-featured-projects__grid .btn:hover {
  background: #5e9646;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .homepage-featured-projects__grid {
    grid-template-columns: 1fr;
  }

  .homepage-featured-projects__grid .div4 {
    order: 4;
    text-align: center;
  }

  .homepage-featured-projects__grid img {
    height: 260px;
  }
}

/* -----------------------------------
   HERO VIDEO SECTION
----------------------------------- */

.hero-video {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-video__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-video__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional dark overlay for readability */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* Button styling stays consistent with your global .btn */

/* Fix WOWSlider overflow */
#wowslider-container1 {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.ws_images ul {
  margin: 0;
  padding: 0;
}

.ws_images img {
  border-radius: 12px;
  object-fit: cover;
}

/* ------------------------------
   WOWSLIDER OVERRIDES
------------------------------ */

/* Center the slider */
#wowslider-container1 {
  margin: 0 auto;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Remove WOWSlider’s default borders/backgrounds */
#wowslider-container1 .ws_images {
  background: none !important;
  border: none !important;
}

/* Image styling */
#wowslider-container1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Caption text (the product names) */
#wowslider-container1 li {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  text-align: center;
  padding: 0.5rem 0;
}

/* Remove WOWSlider’s default font */
#wowslider-container1 * {
  font-family: inherit !important;
}

/* ------------------------------
   SIMPLE FADE-IN ANIMATIONS
------------------------------ */

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {
  #wowslider-container1 {
    max-width: 100%;
  }

  #wowslider-container1 img {
    height: auto;
  }
}

/* ------------------------------
   HOME SERVICES SECTION
------------------------------ */

.home-services {
  padding: 6rem 0;
  background: #ffffff;
}

.home-services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section header */
.home-services__header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-services__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.home-services__header h3.fancy {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  color: #6aa84f;
  margin-bottom: 1rem;
}

.home-services__header .container div {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* ------------------------------
   SERVICES GRID
------------------------------ */

.home-services__grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Card */
.home-services__grid--card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}

.home-services__grid--card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

/* Title overlay */
.home-services__grid--card h2 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  padding: 0.4rem 0.8rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 4px;
}

/* Hover effects */
.home-services__grid--card:hover img {
  transform: scale(1.08);
}

.home-services__grid--card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* ------------------------------
   SIMPLE FADE-IN ANIMATIONS
------------------------------ */

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1100px) {
  .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-services__grid {
    grid-template-columns: 1fr;
  }

  .home-services__grid--card h2 {
    font-size: 1.2rem;
  }
}

/* ------------------------------
   HOME ABOUT SECTION
------------------------------ */

.home-about {
  padding: 6rem 0;
  background: #fafafa;
}

.home-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.home-about__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.home-about__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.home-about__header h3.fancy {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  color: #6aa84f;
  margin-bottom: 1rem;
}

.home-about__header div {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.home-about__header .btn {
  background: #6aa84f;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease;
}

.home-about__header .btn:hover {
  background: #5e9646;
}

/* ------------------------------
   IMAGE COLLAGE
------------------------------ */

.home-about__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: end;
}

.home-about__images > div {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.home-about__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Staggered layout */
.home-about__images--1 {
  transform: translateY(20px);
}

.home-about__images--2 {
  transform: translateY(-20px);
}

.home-about__images--3 {
  transform: translateY(20px);
}

/* ------------------------------
   SIMPLE FADE-IN ANIMATIONS
------------------------------ */

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .home-about__images {
    grid-template-columns: 1fr;
  }

  .home-about__images--1,
  .home-about__images--2,
  .home-about__images--3 {
    transform: none;
  }
}

/* ------------------------------
   CONTACT FORM / GET STARTED SECTION
------------------------------ */

.form-new {
  position: relative;
  padding: 6rem 0;
  background: #ffffff;
  overflow: hidden;
}

.form-new .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ------------------------------
   HEADER
------------------------------ */

.form-new__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.form-new__header h2.fancy {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-style: italic;
  color: #6aa84f;
  margin-bottom: 0.5rem;
}

.form-new__header--body {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ------------------------------
   STEPS ROW
------------------------------ */

.form-new__steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.form-new__steps--box {
  flex: 1;
  min-width: 260px;
  background: #fafafa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.form-new__steps--number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #6aa84f;
  font-style: italic;
}

.form-new__steps--copy .heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #222;
}

.form-new__steps--copy .content {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* ------------------------------
   CONTACT CTA BLOCK
------------------------------ */

.form-new__form {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

.form-new__form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.form-new__form--body p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.form-new__form--body a {
  color: #6aa84f;
  font-weight: 600;
  text-decoration: none;
}

.form-new__form--body a:hover {
  text-decoration: underline;
}

/* ------------------------------
   BACKGROUND IMAGE
------------------------------ */

.form-new__bkgd {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  max-width: 600px;
  opacity: 0.15;
  z-index: 1;
}

.form-new__bkgd img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------
   SIMPLE FADE-IN ANIMATIONS
------------------------------ */

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .form-new__steps {
    flex-direction: column;
  }

  .form-new__bkgd {
    width: 70%;
    opacity: 0.2;
  }
}

@media (max-width: 600px) {
  .form-new__form {
    padding: 1.8rem;
  }

  .form-new__steps--box {
    padding: 1.5rem;
  }
}

/* ------------------------------
   SERVICE AREA SECTION
------------------------------ */

#service-area {
  padding: 6rem 0;
  background: #ffffff;
}

.service-area-callout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* ------------------------------
   MAP COLUMN
------------------------------ */

.service-area-callout__map {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-area-callout__map-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* ------------------------------
   TEXT COLUMN
------------------------------ */

.service-area-callout__information {
  flex: 1;
}

.service-area-callout__information__heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #6aa84f;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-area-callout__information__subheading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-style: italic;
  color: #222;
  margin-bottom: 0.8rem;
}

.service-area-callout__information__copy {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  max-width: 500px;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .service-area-callout {
    flex-direction: column;
    text-align: center;
  }

  .service-area-callout__information__copy {
    margin: 0 auto;
  }
}

/* ------------------------------
   NURTURE / DESIGN INSPIRATION SECTION
------------------------------ */

.nurture {
  padding: 6rem 0;
  background: #ffffff;
}

.nurture .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Two-column layout */
.nurture__column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ------------------------------
   IMAGE COLUMN
------------------------------ */

.nurture__column--image {
  flex: 1;
  min-width: 300px;
}

.nurture__column--image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ------------------------------
   TEXT COLUMN
------------------------------ */

.nurture .home-about__header {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.nurture .home-about__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}

.nurture .home-about__header h3.fancy {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  color: #6aa84f;
  margin-bottom: 1rem;
}

.nurture .home-about__header div {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.nurture .home-about__header p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.nurture .home-about__header .btn {
  background: #6aa84f;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease;
}

.nurture .home-about__header .btn:hover {
  background: #5e9646;
}

/* ------------------------------
   SIMPLE FADE-IN ANIMATIONS
------------------------------ */

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .nurture__column {
    flex-direction: column;
    text-align: center;
  }

  .nurture .home-about__header {
    text-align: center;
  }
}

/* ------------------------------
   FOOTER
------------------------------ */

.footer {
  background: #111;
  color: #ddd;
  padding: 4rem 0 2rem;
  font-size: 0.95rem;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ------------------------------
   GRID LAYOUT
------------------------------ */

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* ------------------------------
   LOGO + DESCRIPTION
------------------------------ */

.footer__grid img {
  max-width: 220px;
  height: auto;
  display: block;
}

.footer__grid .text-sm {
  margin-top: 1rem;
  line-height: 1.6;
  color: #ccc;
}

/* ------------------------------
   NAVIGATION COLUMN
------------------------------ */

.nav--footer .nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav--footer .nav__link {
  margin-bottom: 0.6rem;
}

.nav--footer a {
  color: #ddd;
  text-decoration: none;
  transition: color .2s ease;
}

.nav--footer a:hover {
  color: #6aa84f;
}

.nav--footer .btn {
  background: #6aa84f;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0.5rem;
  transition: background .2s ease;
}

.nav--footer .btn:hover {
  background: #5e9646;
}

/* ------------------------------
   TWO-COLUMN CONTACT + SOCIAL
------------------------------ */

.footer__grid__twocol {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__grid__twocol--heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer__phone,
.footer__grid__twocol a {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  transition: color .2s ease;
}

.footer__phone:hover,
.footer__grid__twocol a:hover {
  color: #6aa84f;
}

.footer__address {
  margin-top: 0.5rem;
  line-height: 1.5;
  color: #ccc;
}

/* ------------------------------
   COPYRIGHT ROW
------------------------------ */

.footer__copyright {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: #aaa;
}

.footer__copyright a {
  color: #6aa84f;
  text-decoration: none;
}

.footer__copyright a:hover {
  text-decoration: underline;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid > div:first-child {
    grid-column: span 1;
  }

  .footer__grid__twocol {
    text-align: left;
  }
}

/* ------------------------------
   INTERIOR PAGE BANNER
------------------------------ */

.banner--service {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: #0f2a1f; /* fallback if image fails */
}

/* Background image */
.banner--service .banner__bkgd-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.55);
}

/* Content wrapper */
.banner--service .banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

/* Title */
.banner--service h1.banner-text__seo-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

/* Fancy subtitle */
.banner--service .banner-text__fancy {
  display: inline-block;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: #ffffff;
  opacity: 0.9;
}

/* Remove Hutten parallax classes */
.banner--service [class*="rellax"] {
  transform: none !important;
}

/* ------------------------------
   SIMPLE FADE-IN ANIMATIONS
------------------------------ */

.fade-in {
  opacity: 0;
  animation: fadeIn ease forwards;
}

.animation-delay-500 {
  animation-delay: .5s;
}

.animation-duration-3000 {
  animation-duration: 3s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {
  .banner--service {
    height: 50vh;
    min-height: 360px;
  }

  .banner--service h1.banner-text__seo-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
}

/* ------------------------------
   SERVICE PAGE CONTENT BLOCK
------------------------------ */

.service__content__info {
  padding: 4rem 0;
}

.service__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Text block */
.sets__text {
  color: #fff; /* because this section sits on a dark banner background */
  padding: 2rem 1rem;
}

.sets__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.sets__text h2.fancy {
  font-style: italic;
  color: #ffffff;
}

.sets__text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e6e6e6;
  max-width: 700px;
  margin: 0 auto;
}

/* Remove Hutten WYSIWYG formatting */
.wysiwyg,
.type-text {
  all: unset;
  display: block;
}

/* Optional: fade-in animation (matches homepage) */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   EXPANDED VALUE STACK (INTERIOR PAGE)
------------------------------ */

.expanded-value-stack {
  padding: 6rem 0;
  background: #0f2a1f; /* deep green/blue tone */
  color: #fff;
}

.expanded-value-stack--topography-bg {
  background-size: cover;
  background-position: center;
}

/* Each item (alternating layout) */
.expanded-value-stack__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

/* Text column */
.expanded-value-stack__copy {
  flex: 1;
  min-width: 300px;
}

.expanded-value-stack__heading {
  margin-bottom: 1rem;
}

.expanded-value-stack__heading-second {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  color: #fff;
}

.expanded-value-stack__paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
  color: #e6e6e6;
}

/* Image column */
.expanded-value-stack__images {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.expanded-value-stack__image-first {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Convert data-bg into actual background image */
.expanded-value-stack__image-first[data-bg] {
  background-image: attr(data-bg url);
}

/* Remove Hutten parallax classes */
.expanded-value-stack__item [class*="rellax"] {
  transform: none !important;
}

/* ------------------------------
   SIMPLE FADE-IN ANIMATIONS
------------------------------ */

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .expanded-value-stack__item {
    flex-direction: column;
    text-align: center;
  }

  .expanded-value-stack__paragraph {
    margin: 0 auto;
  }

  .expanded-value-stack__image-first {
    height: 300px;
  }
}

/* ------------------------------
   PROPERTY CARE PLAN (INTERIOR PAGE)
------------------------------ */

.property-care-plan {
  padding: 6rem 0;
  background: #0f2a1f; /* deep green/blue tone */
  color: #fff;
  text-align: center;
}

.property-care-plan__header {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.property-care-plan__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
  color: #fff;
}

.property-care-plan__intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e6e6e6;
}

.property-care-plan__intro a {
  color: #6aa84f;
  font-weight: 600;
  text-decoration: none;
}

.property-care-plan__intro a:hover {
  text-decoration: underline;
}

/* ------------------------------
   STEPS LIST
------------------------------ */

.property-care-plan__list {
  list-style: none;
  padding: 0;
  margin: 3rem auto 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.property-care-plan__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255,255,255,0.05);
  padding: 1.8rem 2rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Step number */
.property-care-plan__item-number {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: #6aa84f;
  min-width: 40px;
}

/* Step text */
.property-care-plan__item-text {
  text-align: left;
}

.property-care-plan__item-heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}

.property-care-plan__item-subheading {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e6e6e6;
}

/* ------------------------------
   FADE-IN ANIMATIONS
------------------------------ */

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 700px) {
  .property-care-plan__item {
    flex-direction: column;
    text-align: center;
  }

  .property-care-plan__item-text {
    text-align: center;
  }

  .property-care-plan__item-number {
    margin-bottom: 0.5rem;
  }
}

/* ------------------------------
   SERVICE MAINTENANCE SECTION
------------------------------ */

.service-docks-maintenance {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 6rem 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.service-docks-maintenance__image {
  flex: 1;
  min-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-docks-maintenance__copy {
  flex: 1;
  min-width: 300px;
}

.service-docks-maintenance__preheading {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6aa84f;
  margin-bottom: 0.5rem;
}

.service-docks-maintenance__heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: italic;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f2a1f;
}

.service-docks-maintenance__paragraph p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* ------------------------------
   CTA SECTION (TRACTOR BACKGROUND)
------------------------------ */

.section--tractor-bg {
  background: #000;
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}

.section__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-style: italic;
  margin-bottom: 1rem;
}

.section__header .btn--gray {
  background: #444;
  color: #fff !important;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}

.section__header .btn--gray:hover {
  background: #666;
}

/* ------------------------------
   SERVICE FEATURES LIST
------------------------------ */

.service__features {
  padding: 6rem 0;
  background: #ffffff;
}

.service__features-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: #222;
}

.service__features-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}

.service__features-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.4rem;
}

.service__features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #6aa84f;
  font-size: 1.4rem;
  line-height: 1;
}

/* Fade-in cascade */
.scroll-animate-fade-cascade-children li {
  opacity: 0;
  animation: fadeUp ease forwards;
}

.scroll-animate-fade-cascade-children li:nth-child(1) { animation-delay: .1s; }
.scroll-animate-fade-cascade-children li:nth-child(2) { animation-delay: .2s; }
.scroll-animate-fade-cascade-children li:nth-child(3) { animation-delay: .3s; }
.scroll-animate-fade-cascade-children li:nth-child(4) { animation-delay: .4s; }
.scroll-animate-fade-cascade-children li:nth-child(5) { animation-delay: .5s; }
.scroll-animate-fade-cascade-children li:nth-child(6) { animation-delay: .6s; }

/* ------------------------------
   MATERIALS SLIDER SECTION
------------------------------ */

.service-docks-maintenance__heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: italic;
  font-weight: 700;
  color: #0f2a1f;
  margin: 4rem 0 2rem;
  text-align: center;
}

/* Center the slider container */
#wowslider-container1 {
  margin: 0 auto 4rem;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  position: relative;
}

/* Remove WOWSlider’s default background/borders */
#wowslider-container1 .ws_images {
  background: none !important;
  border: none !important;
}

/* Image styling */
#wowslider-container1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Caption text (product names) */
#wowslider-container1 li {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  text-align: center;
  padding: 0.5rem 0;
}

/* Remove WOWSlider’s default font */
#wowslider-container1 * {
  font-family: inherit !important;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {
  #wowslider-container1 {
    max-width: 100%;
  }

  #wowslider-container1 img {
    height: auto;
  }
}

/* ------------------------------
   SERVICE CONTENT INFO (WHITE BACKGROUND)
------------------------------ */

.service__content__info {
  padding: 4rem 0;
}

.service__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Header inside this block */
.service__content__info .property-care-plan__heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
  color: #0f2a1f; /* dark, readable on white */
}

/* Text block */
.sets__text {
  padding: 2rem 1rem;
  color: #222;
}

.sets__text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Neutralize old WYSIWYG styles */
.wysiwyg,
.type-text {
  all: unset;
  display: block;
}

.service__content__info {
  padding: 4rem 0;
}

.service__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service__content__info h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.service__content__info p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  max-width: 700px;
  margin: 0.8rem auto;
}

.wysiwyg,
.type-text {
  all: unset;
  display: block;
}

/* -----------------------------------
   PROCESS STEPS
----------------------------------- */

.process-steps {
  padding: 4rem 0;
  background: #fff;
}

.process-steps .container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Each step */
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  align-items: flex-start;
}

/* Step number */
.process-step__count {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6aa84f;
  line-height: 1;
}

/* Text column */
.process-step__copy {
  max-width: 700px;
}

.process-step__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.process-step__paragraph p,
.process-step__paragraph ul {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 1rem;
}

.process-step__paragraph ul {
  padding-left: 1.2rem;
}

.process-step__paragraph li {
  margin-bottom: 0.5rem;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */

@media (max-width: 700px) {
  .process-step {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .process-step__count {
    margin-bottom: 0.5rem;
  }
}

/* About page banner heading refinement */
.banner--design .banner-text__fancy {
  display: inline-block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: #ffffff;
  opacity: 0.9;
  margin: 0 0.3rem;
}

.banner--design .banner-text__pre {
  opacity: 0.85;
}

/* ------------------------------
   ABOUT PAGE INTRO BLOCK
------------------------------ */

.service__content__info,
.service__content--process {
  padding: 4rem 0;
}

.service__content--process .sets__text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

.service__content--process h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.service__content--process p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  max-width: 700px;
  margin: 0.8rem auto;
}

/* Remove Hutten WYSIWYG formatting */
.wysiwyg,
.type-text {
  all: unset;
  display: block;
}

/* ------------------------------
   ABOUT PAGE – MISSION SECTION
------------------------------ */

.intro {
  padding: 6rem 0;
}

.intro--about .intro__col-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Image column */
.intro__col--img {
  flex: 1;
  min-width: 300px;
}

.intro__img-wrap {
  width: 100%;
}

.intro__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Text column */
.intro__col {
  flex: 1;
  min-width: 300px;
}

.intro__col h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.intro__col p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  max-width: 600px;
}

/* ------------------------------
   FADE-IN ANIMATIONS
------------------------------ */

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .intro--about .intro__col-wrap {
    flex-direction: column;
    text-align: center;
  }

  .intro__col p {
    margin: 0 auto;
  }
}

/* ------------------------------
   TESTIMONIAL SECTION
------------------------------ */

.service-docks-testimonials {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0;
  color: #fff;
}

/* Convert data-bg into actual background image */
.service-docks-testimonials[data-bg] {
  background-image: attr(data-bg url);
}

/* Dark overlay for readability */
.service-docks-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.service-docks-testimonials__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.testimonial__heading {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial__heading small {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 0.3rem;
}

/* Testimonial content */
.testimonial__content-wrap {
  background: rgba(255,255,255,0.08);
  padding: 2rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  margin-top: 1.5rem;
}

.testimonial__content {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  color: #f2f2f2;
  margin-bottom: 1rem;
}

.testimonial__author {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}

/* ------------------------------
   FADE-IN ANIMATIONS
------------------------------ */

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp ease forwards;
}

.scroll-animate-fade {
  animation-duration: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {
  .testimonial__content-wrap {
    padding: 1.5rem;
  }

  .testimonial__content {
    font-size: 1.1rem;
  }
}

/* ------------------------------
   CORE VALUES — FINAL POLISH
------------------------------ */

/* Section spacing */
.values {
  padding: 6rem 0;
}

.values__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.values__heading {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.values__description {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}


/* Value blocks */
.expanded-value-stack__item {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

/* Headings */
.expanded-value-stack__heading-first {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 0.25rem;
}

.expanded-value-stack__heading-second {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: #6aa84f;
  margin-bottom: 1rem;
}

/* Paragraphs */
.expanded-value-stack__paragraph p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #444;
}

/* Bullet styling */
.expanded-value-stack__paragraph p:has(•) {
  padding-left: 1.2rem;
  position: relative;
}

.expanded-value-stack__paragraph p:has(•)::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #6aa84f;
  font-size: 1.2rem;
}

/* Images */
.expanded-value-stack__image-first {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.expanded-value-stack__image-first::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .expanded-value-stack__item {
    flex-direction: column;
    text-align: center;
  }

  .expanded-value-stack__paragraph {
    margin: 0 auto;
  }
}

/* ------------------------------
   EXPANDED VALUE STACK (REUSED)
------------------------------ */

.values .expanded-value-stack {
  padding-top: 3rem;
}

.values .expanded-value-stack__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.values .expanded-value-stack__copy {
  flex: 1;
  min-width: 300px;
}

.values .expanded-value-stack__heading {
  margin-bottom: 1rem;
}

.values .expanded-value-stack__heading-first {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 0.3rem;
}

.values .expanded-value-stack__heading-second {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #6aa84f;
}

.values .expanded-value-stack__paragraph {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  max-width: 650px;
}

.values .expanded-value-stack__paragraph p {
  margin-bottom: 0.8rem;
}

/* Image column */
.values .expanded-value-stack__images {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.values .expanded-value-stack__image-first {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Convert data-bg into actual background image */
.values .expanded-value-stack__image-first[data-bg] {
  background-image: attr(data-bg url);
}

/* Remove Hutten parallax */
.values [class*="rellax"] {
  transform: none !important;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .values .expanded-value-stack__item {
    flex-direction: column;
    text-align: center;
  }

  .values .expanded-value-stack__paragraph {
    margin: 0 auto;
  }

  .values .expanded-value-stack__image-first {
    height: 300px;
  }
}

/* ------------------------------
   CAREERS CALLOUT BANNER
------------------------------ */

.careers-callout__banner {
  position: relative;
  background: #0f2a1f; /* deep green brand tone */
  color: #fff;
  padding: 6rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background image container */
.careers-callout__banner--img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.careers-callout__banner--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

/* Content wrapper */
.careers-callout__banner--header,
.careers-callout__banner--content {
  position: relative;
  z-index: 2;
}

.careers-callout__banner--header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.careers-callout__banner--content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e6e6e6;
}

/* Button */
.careers-callout__banner--content .btn--orange {
  background: #e67e22;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}

.careers-callout__banner--content .btn--orange:hover {
  background: #cf6f1d;
}

/* Remove unused Hutten element */
.careers-callout__banner--men {
  display: none;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 768px) {
  .careers-callout__banner {
    padding: 4rem 1.5rem;
  }

  .careers-callout__banner--content h2 {
    max-width: 90%;
    margin: 0 auto 1.5rem;
  }
}

/* ------------------------------
   NURTURE SECTION (PREMIUM MATERIALS)
------------------------------ */

.nurture {
  padding: 6rem 0;
  background: #ffffff;
}

.nurture__column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

/* ------------------------------
   LOGO STRIP (LEFT COLUMN)
------------------------------ */

.nurture__column--image {
  flex: 1;
  min-width: 300px;
}

.nurture__column--image .wrapper {
  overflow: hidden;
  width: 100%;
}

.nurture__column--image .items {
  display: flex;
  gap: 2rem;
  animation: scroll-logos 25s linear infinite;
}

.nurture__column--image .item {
  width: 120px;
  height: 160px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: opacity .2s ease, filter .2s ease;
}

.nurture__column--image .item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Smooth infinite scroll */
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------------------------------
   TEXT COLUMN (RIGHT)
------------------------------ */

.nurture__column--content {
  flex: 1;
  min-width: 300px;
}

.nurture__column--content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 0.5rem;
}

.nurture__column--content h3.fancy {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: #6aa84f;
  margin-bottom: 1rem;
}

.nurture__column--content div {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
}

.nurture__column--content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.nurture__column--content .btn {
  background: #0f2a1f;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}

.nurture__column--content .btn:hover {
  background: #0c2219;
}

/* Remove Hutten inline style block */
.nurture__column--content style {
  display: none !important;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .nurture__column {
    flex-direction: column;
    text-align: center;
  }

  .nurture__column--content div,
  .nurture__column--content p {
    margin-left: auto;
    margin-right: auto;
  }

  .nurture__column--image .item {
    width: 90px;
    height: 120px;
  }
}

/* ------------------------------
   GALLERY SECTION
------------------------------ */

.gallery {
  padding: 6rem 0;
  background: #fff;
}

.gallery__header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 0.5rem;
}

.gallery__description {
  font-size: 1.15rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ------------------------------
   GRID
------------------------------ */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #000;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .4s ease;
}

/* Hover overlay */
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity .3s ease;
}

.gallery__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

/* Hover effects */
.gallery__item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item:hover .gallery__label {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 600px) {
  .gallery__label {
    font-size: 1rem;
  }
}

.gallery-intro {
  padding: 4rem 0;
  text-align: center;
}

.gallery-intro__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
}

.gallery-intro__header h3.fancy {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: #6aa84f;
  margin-bottom: 1.5rem;
}

.gallery-intro__header .btn {
  margin-top: 1rem;
}

/* Inspiration Gallery Section */
.inspiration-gallery-section {
  padding: 4rem 0;
}

.inspiration-gallery__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.inspiration-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.inspiration-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .4s ease;
}

/* Hover effect */
.inspiration-gallery__item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

/* Caption */
.inspiration-gallery__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.inspiration-gallery__item:hover .inspiration-gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------
   SERVICE GALLERY (Matches All Galleries)
----------------------------------- */

.service-gallery {
  padding: 4rem 0;
}

.service-gallery .gallery__heading {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 2.5rem;
}

/* Rows */
.service-gallery__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Items */
.service-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.service-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .4s ease;
}

/* Hover effect (same as other galleries) */
.service-gallery__item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

/* Optional caption support (same class as inspiration gallery) */
.service-gallery__item figcaption,
.service-gallery__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.service-gallery__item:hover .service-gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .service-gallery__caption {
    font-size: .95rem;
  }
}

/* -----------------------------------
   SERVICE FEATURES SECTION
----------------------------------- */

.service-features {
  padding: 4rem 0;
  background: #fff;
}

.service-features__heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #0f2a1f;
  text-align: center;
  margin-bottom: 2rem;
}

.service-features__list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  font-size: 1.15rem;
  color: #333;
  line-height: 1.6;
}

.service-features__list li {
  position: relative;
  padding-left: 1.4rem;
}

.service-features__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #6aa84f; /* Your brand green */
  font-size: 1.4rem;
  line-height: 1;
}

/* -----------------------------------
   MORE SERVICES CALLOUT
----------------------------------- */

.service-more {
  padding: 2.5rem 0;
  text-align: center;
}

.service-more__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f2a1f;
  text-decoration: none;
  transition: color .25s ease;
}

.service-more__link:hover {
  color: #6aa84f;
}

.service-more__arrow {
  transition: transform .25s ease;
}

.service-more__link:hover .service-more__arrow {
  transform: translateX(4px);
}

/* -----------------------------------
   PRODUCT GALLERY (Pavers & Wall Patterns)
----------------------------------- */

.product-gallery {
  padding: 4rem 0;
  background: #fff;
}

/* Header */
.product-gallery__header {
  text-align: center;
  margin-bottom: 3rem;
}

.product-gallery__header .fancy {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: #6aa84f; /* Brand green accent */
  margin-bottom: 0.5rem;
}

.product-gallery__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin: 0;
}

/* Grid */
.product-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Items */
.product-gallery__item {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding-bottom: 2.5rem; /* space for caption */
}

.product-gallery__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s ease, opacity .4s ease;
}

/* Hover effect (same as other galleries) */
.product-gallery__item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

/* Captions */
.product-gallery__item figcaption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.product-gallery__item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .product-gallery__item img {
    height: 160px;
  }
  .product-gallery__item figcaption {
    font-size: 0.85rem;
  }
}

/* -----------------------------------
   CARE PLAN SECTION
----------------------------------- */

.care-plan {
  padding: 4rem 0;
  background: #0f2a1f; /* Deep green background */
  color: #fff;
}

.care-plan__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.care-plan__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.care-plan__intro {
  font-size: 1.15rem;
  line-height: 1.6;
}

.care-plan__intro a {
  color: #6aa84f;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}

.care-plan__intro a:hover {
  color: #8ccf6a;
}

/* Steps List */
.care-plan__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.care-plan__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.care-plan__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6aa84f;
  min-width: 50px;
  text-align: center;
}

.care-plan__text {
  flex: 1;
}

.care-plan__heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.care-plan__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e6e6e6;
}

/* Responsive */
@media (max-width: 700px) {
  .care-plan__step {
    flex-direction: column;
    text-align: center;
  }

  .care-plan__number {
    margin: 0 auto;
  }
}

/* -----------------------------------
   SERVICES OVERVIEW SECTION
----------------------------------- */

.services-overview {
  padding: 4rem 0;
  background: #fff;
}

/* Header */
.services-overview__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.services-overview__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 0.5rem;
}

.services-overview__subtitle {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: #6aa84f;
  margin-bottom: 1.5rem;
}

.services-overview__intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
}

/* Grid */
.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Cards */
.services-overview__item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.services-overview__item figure {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  transition: transform .3s ease;
}

.services-overview__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .4s ease, opacity .4s ease;
}

/* Hover effect (same as galleries) */
.services-overview__item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

/* Caption */
.services-overview__item figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}

.services-overview__item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .services-overview__item img {
    height: 180px;
  }

  .services-overview__item figcaption {
    font-size: 1.1rem;
  }
}

/* -----------------------------------
   MATERIALS / MANUFACTURERS SECTION
----------------------------------- */

.materials {
  padding: 4rem 0;
  background: #f8f8f8;
}

.materials__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  
}

@media (max-width: 900px) {
  .materials__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Logos Column */
.materials__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  
}

.materials__logo {
  width: 100%;
  max-width: 150px;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  background: forestgreen;
}

.materials__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.materials__logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Content Column */
.materials__content {
  max-width: 600px;
}

.materials__header {
  margin-bottom: 1.5rem;
}

.materials__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 0.5rem;
}

.materials__subtitle {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: #6aa84f;
  margin-bottom: 1.5rem;
}

.materials__text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.25rem;
}

/* Button */
.materials .btn {
  display: inline-block;
  margin-top: 1rem;
}

/* -----------------------------------
   SERVICE FEATURES GRID (4‑UP)
----------------------------------- */

.service-features-grid {
  padding: 4rem 0;
  background: #fff;
}

.service-features-grid__header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.service-features-grid__preheading {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #6aa84f;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-features-grid__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.service-features-grid__intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
}

/* Grid Layout */
.service-features-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Feature Card */
.service-feature {
  background: #f8f8f8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Image */
.service-feature__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Content */
.service-feature__content {
  padding: 1.75rem;
}

.service-feature__heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

/* Sub‑features list */
.service-feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-feature__list li {
  font-size: 1.05rem;
  color: #333;
  padding: 0.35rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.service-feature__list li:last-child {
  border-bottom: none;
}

/* CTA */
.service-features-grid__cta {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f2a1f;
}

.service-features-grid__cta .btn {
  margin-left: 0.75rem;
}

/* Responsive */
@media (max-width: 600px) {
  .service-feature__image img {
    height: 180px;
  }

  .service-feature__heading {
    font-size: 1.25rem;
  }
}

/* -----------------------------------
   SERVICE CALLOUT (Promo Block)
----------------------------------- */

.service-callout {
  padding: 4rem 0;
  background: #f8f8f8;
}

.service-callout__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .service-callout__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.service-callout__content {
  max-width: 600px;
}

.service-callout__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.service-callout__link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6aa84f;
  text-decoration: none;
  transition: color .3s ease;
}

.service-callout__link:hover {
  color: #4f8a3c;
}

.service-callout__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
  .service-callout__image img {
    height: 240px;
  }
}

/* -----------------------------------
   SERVICE MAINTENANCE (Two‑Column)
----------------------------------- */

.service-maintenance {
  padding: 4rem 0;
  background: #fff;
}

.service-maintenance__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .service-maintenance__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.service-maintenance__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
  .service-maintenance__image img {
    height: 240px;
  }
}

.service-maintenance__preheading {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #6aa84f;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-maintenance__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.service-maintenance__text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  max-width: 600px;
}

/* -----------------------------------
   SERVICE INTRO (Text + Image)
----------------------------------- */

.service-intro {
  padding: 4rem 0;
  background: #fff;
}

.service-intro__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .service-intro__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Text Column */
.service-intro__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.service-intro__text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #333;
  max-width: 600px;
}

@media (max-width: 900px) {
  .service-intro__text {
    margin: 0 auto;
  }
}

/* Image Column */
.service-intro__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

@media (max-width: 600px) {
  .service-intro__image img {
    height: 260px;
  }
}

/* -----------------------------------
   CONTACT INTRO
----------------------------------- */

.contact-intro {
  padding: 4rem 0;
  background: #fff;
}

.contact-intro__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-intro__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.contact-intro__text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}


/* -----------------------------------
   CONTACT INFO GRID
----------------------------------- */

.contact-info {
  padding: 4rem 0;
  background: #f8f8f8;
}

.contact-info__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f2a1f;
  margin-bottom: 1rem;
}

.contact-info__link {
  color: #6aa84f;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.contact-info__link:hover {
  color: #4f8a3c;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info__list li {
  margin-bottom: 0.5rem;
}

.space-before--sm {
  margin-top: 1rem;
}

/* -----------------------------------
   HOME VIDEOS SECTION
----------------------------------- */

.home-videos {
  padding: 4rem 0;
  background: #fff;
  overflow: hidden;
}

.home-videos__header {
  text-align: center;
  margin-bottom: 2rem;
}

.home-videos__header h2 {
  font-size: 1.8rem;
  color: #6aa84f;
  margin-bottom: .5rem;
}

.home-videos__header h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f2a1f;
}

.home-videos__slider {
  max-width: 900px;
  margin: 0 auto;
}

/* Fix WOWSlider overflow */
#wowslider-container1 {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.ws_images ul {
  margin: 0;
  padding: 0;
}

.ws_images img {
  border-radius: 12px;
  object-fit: cover;
}

/* -----------------------------------
   MODERN SLIDER
----------------------------------- */

.slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.slider__track {
  display: flex;
  transition: transform .4s ease;
}

.slider__slide {
  min-width: 100%;
  text-align: center;
}

.slider__slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.slider__caption {
  margin-top: .75rem;
  font-weight: 600;
  color: #0f2a1f;
}

/* Buttons */
.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  padding: .6rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 6px;
  color: #0f2a1f;
  transition: background .2s ease;
}

.slider__btn:hover {
  background: #fff;
}

.slider__btn--prev {
  left: 10px;
}

.slider__btn--next {
  right: 10px;
}

/* Mobile */
@media (max-width: 600px) {
  .slider__slide img {
    height: 260px;
  }
}

/* -----------------------------------
   MATERIALS SLIDER
----------------------------------- */

.materials-slider {
  padding: 4rem 0;
  text-align: center;
}

.materials-slider__heading {
  margin-bottom: 2rem;
}

/* Slider Core */
.slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.slider__track {
  display: flex;
  transition: transform .4s ease;
}

.slider__slide {
  min-width: 100%;
  text-align: center;
}

.slider__slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.slider__caption {
  margin-top: .75rem;
  font-weight: 600;
  color: #0f2a1f;
}

/* Buttons */
.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  padding: .6rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 6px;
  color: #0f2a1f;
  transition: background .2s ease;
}

.slider__btn:hover {
  background: #fff;
}

.slider__btn--prev { left: 10px; }
.slider__btn--next { right: 10px; }

@media (max-width: 600px) {
  .slider__slide img {
    height: 260px;
  }
}

/* -----------------------------------
   HEADER BASE
----------------------------------- */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.site-header__logo img {
  display: block;
  height: auto;
}

/* -----------------------------------
   DESKTOP NAV
----------------------------------- */

.site-nav {
  display: flex;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__list a {
  color: #0f2a1f;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav__list a:hover {
  color: #6aa84f;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #0f2a1f;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  padding: .75rem 0;
  border-radius: 6px;
  display: none;
  min-width: 200px;
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: .5rem 1rem;
  color: #0f2a1f;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* -----------------------------------
   MOBILE MENU
----------------------------------- */

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 3px;
  background: #0f2a1f;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: #0f2a1f;
  font-weight: 600;
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu.open {
    display: block;
  }
}

